home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / smtp_settings.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  93 lines

  1. #
  2. # This script was written by Michel Arboi <arboi@alussinan.org>
  3. # and merged with third_party_domain.nasl, which was written by 
  4. # Renaud Deraison <deraison@cvs.nessus.org>
  5. #
  6. # GPL...
  7. #
  8. # SMTP is defined by RFC 821. Messages are defined by RFC 822
  9.  
  10. default_domain = "example.com";
  11.  
  12. if(description)
  13. {
  14.  script_id(11038);
  15.  script_version ("$Revision: 1.5 $");
  16.  name["english"] = "SMTP settings";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. This script just sets a couple of SMTP parameters.
  21.  
  22. Several checks need to use a third party host/domain 
  23. name to work properly.
  24.  
  25. The checks that rely on this are SMTP or DNS relay checks.
  26.  
  27. By default, nessus.org is being used. However, under some
  28. circumstances, this may make leak packets from your network
  29. to this domain, thus compromising the privacy of your tests.
  30.  
  31. While the owner of 'nessus.org' is not known to keep logs of
  32. such packet traces, you may want to change this value to
  33. maximize your privacy.
  34.  
  35. Note that you absolutely need this option to be set to a 
  36. *third party* domain. This means a domain that has *nothing
  37. to do* with the domain name of the network you are testing.
  38.  
  39. Risk factor : None";
  40.  
  41.  script_description(english:desc["english"]);
  42.  
  43.  summary["english"] = "SMTP settings";
  44.  script_summary(english:summary["english"]);
  45.  
  46.  script_category(ACT_SETTINGS);
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi and Renaud Deraison");
  49.  family["english"] = "Settings";
  50.  family["francais"] = "Configuration";
  51.  script_family(english:family["english"], francais:family["francais"]);
  52.  
  53.  #
  54.  script_add_preference(name:"Third party domain :", type:"entry", value:default_domain);
  55.  script_add_preference(name:"From address : ", type:"entry", 
  56.             value:"nobody@example.com");
  57.  script_add_preference(name:"To address : ", type:"entry", 
  58.     value:"postmaster@[AUTO_REPLACED_IP]");
  59.  # AUTO_REPLACED_IP and AUTO_REPLACED_ADDR are... automatically replaced!
  60.  exit(0);
  61. }
  62.  
  63. #
  64. # The script code starts here
  65. #
  66.  
  67. fromaddr = script_get_preference("From address : ");
  68. toaddr = script_get_preference("To address : ");
  69.  
  70. if (!fromaddr) fromaddr = "nessus@example.com";
  71. if (! toaddr) toaddr = "postmaster@[AUTO_REPLACED_IP]";
  72.  
  73. if ("AUTO_REPLACED_IP" >< toaddr) { 
  74.   dstip = get_host_ip();
  75.   toaddr = ereg_replace(pattern:"AUTO_REPLACED_IP", string:toaddr, 
  76.         replace: dstip);
  77. }
  78. if ("AUTO_REPLACED_ADDR" >< toaddr) {
  79.   dstaddr = get_host_name(); 
  80.   toaddr = ereg_replace(pattern:"AUTO_REPLACED_ADDR", string:toaddr, 
  81.         replace: dstaddr);
  82. }
  83.  
  84. set_kb_item(name:"SMTP/headers/From", value:fromaddr);
  85. set_kb_item(name:"SMTP/headers/To", value:toaddr);
  86.  
  87. domain = script_get_preference("Third party domain :");
  88.  
  89. if(!domain)domain = default_domain;
  90. set_kb_item(name:"Settings/third_party_domain", value:domain);
  91.  
  92. exit(0);
  93.